home *** CD-ROM | disk | FTP | other *** search
/ The Utilities Experience / The Utilities Experience - Volume 1.iso / software / graphics / n-z / raystorexa / arexx / fog.ray < prev    next >
Text File  |  1995-10-17  |  965b  |  55 lines

  1. /***************
  2.  * NAME:          fog.ray
  3.  * VERSION:       1.0 17.08.1995
  4.  * DESCRIPTION:   Test of fog
  5.  * AUTHORS:       Andreas Heumann
  6.  * BUGS:          none
  7.  * TO DO:         none
  8.  * HISTORY:
  9.  *    DATE     NAME  COMMENT
  10.  *    17.08.95 ah    initial release
  11.  ***************/
  12.  
  13. signal on error
  14.  
  15. options results
  16.  
  17. IF ~show('P','RAYSTORM') THEN DO
  18.     address COMMAND 'run >NIL: <NIL: /RayStorm'
  19.     address COMMAND WaitForPort RAYSTORM
  20. END  
  21.  
  22. address RAYSTORM
  23.  
  24. 'TEXTUREPATH /textures'
  25.  
  26. 'SETSCREEN 160 128'
  27. 'SETCAMERA <0,50,-75> <0,-10,0> <0,1,0> 25 20'
  28. 'SETWORLD [0,0,0] [20,20,20] FOGLEN=15 FOGHEIGHT=0'
  29. 'POINTLIGHT <20,20,-40>'
  30.  
  31. 'NEWSURFACE RED'
  32. 'DIFFUSE [255,0,0]'
  33.  
  34. 'NEWSURFACE PLANE'
  35. 'DIFFUSE [0,0,0]'
  36. 'SPECULAR [0,0,0]'
  37. 'IMTEXTURE checker.itx <0,0,0> <0,0,0> <5,5,5> 255 255 0'
  38.  
  39. 'PLANE PLANE <0,-10,0> <0,1,0>'
  40. 'SPHERE RED <0,0,0> 10'
  41.  
  42. 'STARTRENDER'
  43.  
  44. 'SAVEPIC fog.iff'
  45.  
  46. 'CLEANUP'
  47.  
  48. exit 0
  49.  
  50. error:
  51. say "Error" rc "in line" sigl ":"
  52. GETERRORSTR rc
  53. say result
  54. exit 0
  55.